home *** CD-ROM | disk | FTP | other *** search
/ PC Zone 96 / PC Zone #096.7z / Dppcz1200.mdf / Demos / Gunlok / data1.cab / Program_Executable_Files / scripts / container.gsh < prev    next >
Text File  |  2000-09-09  |  845b  |  30 lines

  1. // defines Container
  2. ////////////////////////////////////////////////////////////////////////////////////
  3.  
  4. // start wrapper - prevent multiple inclusions or recursive inclusions
  5.  
  6. //(this currently causes 'unrecognized preprocessor directive' warnings, until implemented)
  7. #ifndef INCLUDED_CONTAINER_GSH
  8. #define INCLUDED_CONTAINER_GSH
  9.  
  10.  
  11. ////////////////////////////////////////////////////////////////////////////////////
  12.  
  13. shape Shp_Container
  14. {
  15.        file "objects\container.rif"
  16.        name "CONTAINER A"
  17. }
  18.  
  19. role Rol_Container : Rol_PlacedObject
  20. {
  21.     shape        Shp_Container
  22.     identifier "container"
  23.     destructibility Frg_Container
  24. }
  25.  
  26. ////////////////////////////////////////////////////////////////////////////////////
  27.  
  28. // end wrapper - for preventing multiple or recursive inclusions
  29. #endif // !INCLUDED_CONTAINER_GSH
  30.